--> -->
 
 
ValueError
Python 3.4.3: /home/pbab0rnfutty/.local/bin/python3
Thu Nov 6 16:50:25 2025

A problem occurred in a Python script. Here is the sequence of function calls leading up to the error, in the order they occurred.

 /home/pbab0rnfutty/public_html/cgi-bin/URLDISPATCHER.py in ()
    160     UITemplateCode = UITemplateCode()
    161     modeBuffer = 'X'
=>  162     htmlTemplate = UITemplateCode.matchStats(matchId,modeBuffer)
    163     print(htmlTemplate)
    164     exit()
htmlTemplate undefined, UITemplateCode = <UITemplateCode.UITemplateCode object>, UITemplateCode.matchStats = <bound method UITemplateCode.matchStats of <UITemplateCode.UITemplateCode object>>, matchId = '', modeBuffer = 'X'
 /home/pbab0rnfutty/public_html/cgi-bin/UITemplateCode.py in matchStats(self=<UITemplateCode.UITemplateCode object>, matchId='', ModeBuffer='X')
    517         
    518         keyword = 'Dream11 Team, Cricket Fantasy, Cricketer Stats, Domestic Cricket League, T20 , T10 , ODI , Player Stats , Scorecard , Player, Player Info'
=>  519         matchId = int(int(matchId) / 3)
    520        
    521         selectQuery = """SELECT matchMaster.TournmentId ,tournment.TournmentName,MatchId ,TeamId1 ,team1.TeamName,TeamId2 ,
matchId = '', builtin int = <class 'int'>

ValueError: invalid literal for int() with base 10: ''
      args = ("invalid literal for int() with base 10: ''",)
      with_traceback = <built-in method with_traceback of ValueError object>